home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-05-22 | 1.4 KB | 35 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="3"
- "COUNT"="1"
- "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
- "NAME"="About Bitmap"
- "VERSION"="1.01"
- "LANGUAGE"="VBScript"
- "TEXT 1"="About Bitmap"
- "DATA 1"="Bitmap Files (*.bmp)|*.bmp|All Files (*.*)|*.*"
- "DESCRIPTION 1"="You can change the logo Yahoo! Messenger displays an its About window here."
- "DESCRIPTION 2"="The logo must be a Windows bitmap, and should be 255 by 29 pixels in size."
- "DESCRIPTION 3"="NOTE #1: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
- "DESCRIPTION 4"="NOTE #2: This does not work with the new Yahoo! Messenger version 4.x"
- "DESCRIPTION 5"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
- "AUTHOR"="Neil R. Turner (totalxs@hotmail.com) for Xteq Systems"
- "CONTACTURL"="http://www.neilrt.cwc.net/"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
-
- sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
-
- Sub Plugin_Initialize
- s=RegReadValue(sP)
- t=IniReadValue(s & "\cobrand.ini","BITMAPS","About Bitmap")
- Call SetUIElement(1,t)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- t=GetUIElement(1)
- s=RegReadValue(sP)
- Call IniWriteValue(s & "\cobrand.ini","BITMAPS","About Bitmap",t)
- End Sub
-
- Sub Plugin_Terminate
- End Sub